home *** CD-ROM | disk | FTP | other *** search
/ Electronic Print Media Service 1998 April / Electronic Print Media Service 1998 April.iso / Ideasrc / dream.DIR / 00096_Script_go the frame < prev    next >
Text File  |  1998-02-04  |  332b  |  19 lines

  1. on exitFrame
  2.   
  3.   go the frame
  4.   
  5.   repeat with n=11 to 15
  6.     if rollover(n) then
  7.       set the visible of sprite n to false
  8.       updatestage
  9.     end if
  10.   end repeat
  11.   
  12.   repeat with n=11 to 15
  13.     if not rollover(n) then
  14.       set the visible of sprite n to true
  15.       updatestage
  16.     end if
  17.   end repeat
  18.   
  19. end